Snippets in VSCode
Posted on 2022-10-05 by
henrikvilhelmberglundSnippets in VSCode
(feature for quickly adding code for functions, if-else statements and much more)
- In settings search for Snippet Suggestions and switch "inline" to "top"
- In a .js file write for example fun and intellisense should show function, press enter and code for creating a function will be inserted
- Like this:
function name(params) {
}
- The function name is selected and you can type to replace the text with your desired function name
- If you press tab the cursor jumps to params where you can write parameter names
- If you press tab again the cursor jumps to the next row where you can write the code itself
- You can also use shift tab to jump backwards
- Success!
More info https://code.visualstudio.com/docs/editor/userdefinedsnippets